iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 17
0
Modern Web

PHP入門系列 第 17

Day17-PHP表單資料傳送與接收

  • 分享至 

  • xImage
  •  

HTML表單:

表單標籤以<form></form>包圍,action後放置目標文件介面。
<form method="傳送方式" action="傳送目的地">
type:欄位種類

  • <input type="text">:文字輸入欄位。
  • <input type="password"> :密碼輸入欄位。
  • <input type="radio">:單選。
  • <input type="checkbox">:多選。
  • <select><option> </option></select>:下拉選單。
  • <textarea ></textarea>:填寫內容,可書寫內容較多。

在欄位上會給予id、value、name辨別,id是唯一的,不得重複,value是用於讓寫程式的人易懂欄位的意義,而name屬性,主要是給html表單辨別。

form method:

➤GET:要求資料,讀取網頁。

會將資料附在網址後方傳送,較不安全。使用$GET取欄為值

<body>
<form method="get" action="index.php">
<p>姓名:
<input type="text" name="name" >
<input type="submit" name="send" value="送出">
</form>
<?php
$result=$_GET[name];
echo $result;
?> 

輸出:
https://ithelp.ithome.com.tw/upload/images/20191003/20120962TtG4pr4Iem.png
還可發現網址的改變

➤POST:提交資料,送出表單。使用$_POST取欄為值。


上一篇
Day16-PHP函數(2)
下一篇
Day18-PHP表單(1)
系列文
PHP入門30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言